示例数据库:sakila database,详细介绍。
所谓CRUD操作是指对数据库的数据进行Create,Read,Update,Delete操作,下面我们一一介绍:
Create
新建数据,即插入数据。
12INSERT [into] table [(column1,column2,column3,...)] VALUES(value1, value2, value3,...);Read
读取数据,即查询数据。
12345678910SELECT [options] items[into file_details]FROM tables[WHERE conditions][GROUP BY group_type][HAVING where_definition][ORDER BY order_type][LIMIT limit_criteria][PROCEDURE proc_name(arguments)][lock_options];除此之外,还有多表查询和子查询。
Update
更新数据。
12345UPDATE [LOW_PRIORITY] [IGNORE] tablenameSET column1=expression1,column2=expression2,...[WHERE condition][ORDER BY order_criteria][LIMIT number]Delete
删除数据。1234DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM table[WHERE condition][ORDER BY order_cols][LIMIT number]